home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Dec / di9812me / PluginSample / 3 / Common / common.pas < prev   
Encoding:
Pascal/Delphi Source File  |  1998-05-26  |  501 b   |  21 lines

  1. unit common;
  2.  
  3. interface
  4.  
  5. uses menus, classes;
  6.  
  7. const
  8.     cPLUGIN_DESCRIBE    = 'DescribePlugin';
  9.     cPLUGIN_INIT        = 'InitPlugin';
  10.     cPLUGIN_INITEVENTS  = 'InitPluginEvents';
  11.  
  12. type
  13.     TPluginDescribe     = procedure (var Desc: string); stdcall;
  14.     TPluginInit         = procedure (ParentMenu: TMainMenu); stdcall;
  15.     TInitPluginEvents   = procedure (lstResize: TList); stdcall;
  16.     TResizeProc         = procedure (var x, y: integer); stdcall;
  17.     
  18. implementation
  19.  
  20. end.
  21.